home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-04-21 | 1.3 KB | 31 lines |
- package com.symantec.itools.swing.borders;
-
- import com.symantec.itools.beans.*;
-
- public final class TitlePositionPropertyEditor
- extends TaggedIntPropertyEditor
- {
- private static TaggedInt[] m_Tags = null;
-
- // When the class loads, load the tags
-
- static
- {
- m_Tags = new TaggedInt[]
- {
- new TaggedInt("ABOVE_TOP", com.sun.java.swing.border.TitledBorder.ABOVE_TOP, "com.sun.java.swing.border.TitledBorder.ABOVE_TOP"),
- new TaggedInt("TOP", com.sun.java.swing.border.TitledBorder.TOP, "com.sun.java.swing.border.TitledBorder.TOP"),
- new TaggedInt("BELOW_TOP", com.sun.java.swing.border.TitledBorder.BELOW_TOP, "com.sun.java.swing.border.TitledBorder.BELOW_TOP"),
- new TaggedInt("ABOVE_BOTTOM", com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM, "com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM"),
- new TaggedInt("BOTTOM", com.sun.java.swing.border.TitledBorder.BOTTOM, "com.sun.java.swing.border.TitledBorder.BOTTOM"),
- new TaggedInt("BELOW_BOTTOM", com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM, "com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM"),
- new TaggedInt("DEFAULT_POSITION", com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION, "com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION"),
- };
- }
-
- public TitlePositionPropertyEditor()
- {
- super(m_Tags);
- }
- }
-